From: Noah Meyerhans Date: Wed, 2 Sep 2026 16:17:57 +0000 (-0400) Subject: increase output buffer size in test suite X-Git-Tag: archive/raspbian/1%2.4.5+dfsg1-2+rpi1^2~1 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=b58159f5d570fee9d4163869d0733c8e2aba243b;p=dovecot.git increase output buffer size in test suite Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1146490 Forwarded: https://dovecot.org/mailman3/archives/list/dovecot@dovecot.org/thread/ANHNQSGJLW6AVONUG42Q7DKUODF47ZLS/ Forwarded: https://dovecot.org/mailman3/archives/list/dovecot@dovecot.org/thread/ANHNQSGJLW6AVONUG42Q7DKUODF47ZLS/ Gbp-Pq: Name bug1146490-buffer-resize.patch --- diff --git a/src/lib/test-ostream-multiplex.c b/src/lib/test-ostream-multiplex.c index 59dcf02..d83b801 100644 --- a/src/lib/test-ostream-multiplex.c +++ b/src/lib/test-ostream-multiplex.c @@ -715,7 +715,7 @@ static int test_stream_backpressure_child(void *context ATTR_UNUSED) /* Small parent buffer so avail reaches 0 quickly once the socket fills; this is the congested state where the backpressure fix matters. */ - struct ostream *parent = o_stream_create_fd(fd[1], 4096); + struct ostream *parent = o_stream_create_fd(fd[1], 8192); o_stream_set_no_error_handling(parent, TRUE); struct ostream *chan0 = o_stream_create_multiplex(parent, SIZE_MAX, OSTREAM_MULTIPLEX_FORMAT_STREAM);